home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / infosrvr / dev / libhtml_.tar / HTMLwriter.h < prev    next >
C/C++ Source or Header  |  1993-01-20  |  555b  |  28 lines

  1. /* HTMLwriter.h -- HTML output of WWW nodes
  2.  * $Id: SGMLmain.c,v 1.3 93/01/06 18:40:27 connolly Exp Locker: connolly $
  3.  */
  4.  
  5. #ifndef HTMLwriter_h
  6. #define HTMLwriter_h
  7.  
  8. #include "HMDoc.h"
  9.  
  10. extern HMDoc_Class HTMLwriter;
  11.  
  12.  
  13. int
  14.   SGML_replen PARAMS((CONST char* data, CONST char* specials));
  15. /*
  16.  * compute the length of data,
  17.  * specials are replaced by character references.
  18.  */
  19.  
  20. char*
  21.   SGML_repcpy PARAMS((char* markup, CONST char* data, CONST char* specials));
  22. /*
  23.  * copy data to markup, replacing
  24.  * specials by numeric character references.
  25.  */
  26.  
  27. #endif
  28.